5876d4e6ac53257b4edfd252dfaece76c7cd3829,flex/src/com/intellij/lang/javascript/flex/debug/FlexValue.java,FlexValue,addChildren,#XCompositeNode#LinkedHashMap#NodeClassInfo#,541
Before Change
node.addChildren(ownStaticFields, false);
node.addChildren(ownStaticProperties, false);
node.addChildren(ownFields, false);
node.addChildren(ownProperties, false);
final XValueChildrenList elementsOfCollectionList = new XValueChildrenList();
After Change
inheritedFields, inheritedProperties);
}
if (nodeClassInfo != null && isCollectionWithDirectContent(nodeClassInfo.myFqn)) {
final XValueChildrenList fieldsAndPropertiesSingletonList =
getWrappingSingletonList("Fields and properties", inheritedNodeSingletonList, ownStaticFields, ownStaticProperties, ownFields,
ownProperties);
node.addChildren(fieldsAndPropertiesSingletonList, false);
}
else {
node.addChildren(inheritedNodeSingletonList, false);
node.addChildren(ownStaticFields, false);
node.addChildren(ownStaticProperties, false);
node.addChildren(ownFields, false);
node.addChildren(ownProperties, false);
}